home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir36 / zipall12.zip / UNZIPTXT.BAT < prev    next >
DOS Batch File  |  1993-05-02  |  445b  |  18 lines

  1. @echo off
  2. REM
  3. REM UNZIPTXT.BAT
  4. REM
  5. REM This BAT file can be executed from within any subdirectory to cause PKUNZIP
  6. REM to explode a TXT.ZIP file previously created using the ZIPTXT.BAT
  7. REM It will delete the TXT.ZIP file after extraction.
  8. REM
  9. pkunzip txt
  10. if errorlevel 1 goto errexit
  11. del txt.zip
  12. echo TXT.ZIP has been exploded and deleted.
  13. goto exit
  14. :errexit
  15. echo Error in execution of PKUNZIP (via UNZIPTXT.BAT).
  16. :exit
  17. echo on
  18.